home *** CD-ROM | disk | FTP | other *** search
/ Aminet 33 / Aminet 33 - October 1999.iso / Aminet / docs / misc / amigapl.9903.lzh / amigapl.9903 / pci.lzx / Include / libraries / pciexpansionbase.h < prev   
Encoding:
C/C++ Source or Header  |  1998-01-09  |  873 b   |  33 lines

  1. #ifndef    LIBRARIES_PCIEXPANSIONBASE_H
  2. #define LIBRARIES_PCIEXPANSIONBASE_H
  3.  
  4. /*
  5. **    $VER: pciexpansion.h 1.0 (30.12.9)
  6. **
  7. **    pciexpansion.library include file
  8. **
  9. **    (C) Copyright 1997-1998 MicroniK
  10. **        All Rights Reserved
  11. **
  12. */
  13. #ifndef    EXEC_TYPES_H
  14. #include "exec/types.h"
  15. #endif
  16.  
  17. #include <resources/pcibase.h>
  18.  
  19. struct PCIExpBase {
  20.         struct Library pci_expansion;
  21.         struct List    cards;           /* list of PCIConfDev structures */
  22.         ULONG          pcie_Flags;
  23.         ULONG          pcie_FreeMemPtr; /* First free PCI MEMORY address */
  24.         ULONG          pcie_FreeIOPtr;  /* First free PCI IO address     */
  25.         struct PCIBase * PCIRBase;      /* micronik_pci.resource base    */
  26.         struct SignalSemaphore pcie_ListGuard;  
  27.         struct Library * pcie_UtilityBase; /* utility.library base */
  28. };
  29.  
  30. #endif    /* LIBRARIES_PCIEXPANSION_H */
  31.  
  32.  
  33.